Conversation
Alexgodoroja
commented
May 6, 2026
| "dgram": map[string]interface{}{"args": []string{"<address|hostname>", "<port>", "--data <msg>"}, "description": "Send a UDP-style datagram"}, | ||
| "listen": map[string]interface{}{"args": []string{"<port>", "[--count <n>]"}, "description": "Listen for incoming datagrams"}, | ||
| "broadcast": map[string]interface{}{"args": []string{"<network_id>", "<message>"}, "description": "Broadcast a datagram to all network members"}, | ||
| "connect": map[string]interface{}{"args": []string{"<address|hostname>", "[port]", "[--message <msg>]"}, "description": "Open a raw stream connection"}, |
Collaborator
Author
There was a problem hiding this comment.
from pre-commits
Alexgodoroja
commented
May 6, 2026
| "endpoint": "203.0.113.5:4000", // must go | ||
| "real_addr": "203.0.113.5:4000", // must go | ||
| "public_addr": "203.0.113.5:4000", // must go | ||
| "endpoint": "203.0.113.5:4000", // must go |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Main codebase impact
None.
release.ymldoes not touchsdk/, the Go driver and registry keepMyPoloScorefor internal use, and the SDK publish workflows(
publish-node-sdk.yml,publish-python-sdk.yml) trigger only onrelease: published— they cannot block or modify the GitHub release.How to release
Tag push triggers everything; no
gh release createneeded.Stable (this PR's target):
Prerelease (SDK publish auto-skips on tags containing
-rc/-beta):git tag -a v1.9.2-rc1 -m "v1.9.2-rc1" git push origin v1.9.2-rc1Watch and verify:
gh run list --workflow=release.yml --limit 3 gh run list --workflow=publish-node-sdk.yml --limit 3 gh run list --workflow=publish-python-sdk.yml --limit 3 gh release view v1.9.2 npm view pilotprotocol@1.9.2 version curl -s https://pypi.org/pypi/pilotprotocol/1.9.2/json | jq -r .info.versionTest plan
npm testinsdk/node— 111/111 passpytestinsdk/python— 124 pass (1 pre-existing/private/varsymlink failure inTestLibraryDiscoveryFallbacks::test_repo_bin_directory, unrelated to this PR)go buildclean onsdk/cgogrep -ri polo sdk/returns nothingrelease.yml,publish-node-sdk.yml,publish-python-sdk.ymlall green and versions land on npm +PyPI